public enum InternalFulfillmentResult extends java.lang.Enum<InternalFulfillmentResult>
| Enum Constant and Description |
|---|
DELIVERED
Delivered - Means the Amazon Appstore was able to deliver the receipt to
your app via IAP SDK response.
|
DELIVERY_ATTEMPTED
Delivery_Attempted - Means the Amazon Appstore was attempted to deliver
the receipt to your app via IAP SDK response.
|
| Modifier and Type | Method and Description |
|---|---|
static InternalFulfillmentResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InternalFulfillmentResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalFulfillmentResult DELIVERED
public static final InternalFulfillmentResult DELIVERY_ATTEMPTED
public static InternalFulfillmentResult[] values()
for (InternalFulfillmentResult c : InternalFulfillmentResult.values()) System.out.println(c);
public static InternalFulfillmentResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null